home *** CD-ROM | disk | FTP | other *** search
/ Creative Computers / Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso / shareware / music / delitracker_1.36 / rexx / dt_songend.rexx < prev    next >
OS/2 REXX Batch file  |  1994-11-17  |  213b  |  19 lines

  1. /* DeliTracker - toggles songend */
  2.  
  3. address 'rexx_DT'
  4.  
  5. options results
  6.  
  7.  
  8. status G end
  9.  
  10. if result == "no" then do
  11.     SongEnd yes
  12.     say "Songend is now on..."
  13. end
  14. else do
  15.     SongEnd no
  16.     say "Songend is now off..."
  17. end
  18.  
  19.